Accord Software, Inc.

tutorial01/main.c




/*
 * Accord Software, Inc.
 *
 * Tutorial 01
 */

extern char *say_hello();

main()
{
	char *response;

	/*
	 * Send "Hello, Server!" to the server and print 
	 * what the server sends back.
	 */

	response = say_hello("Hello, Server!");
	printf("Server says = %s\n", response);

	exit(0);
}

[ Home | Tutorials | str.c | str.h ]
E-Mail:webmaster@accord.com
[P-022] Updated March 14, 1996
Copyright © 1993-1996 Accord Software, Inc. All rights reserved.